-
Notifications
You must be signed in to change notification settings - Fork 274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(root): implement Eddsa multisig derivation #4276
Conversation
cec8b1d
to
bdb5df4
Compare
e8e8842
to
a409eeb
Compare
a409eeb
to
9b03db8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
flush draft
9b03db8
to
3a8f9a4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alebusse BREAKING CHANGE needs to be in the commit footer to be recognized correctly
@@ -5,5 +5,7 @@ export * from './mpc'; | |||
export * from './util/crypto'; | |||
// Deprecated | |||
export * as acountLibCrypto from './util/crypto'; | |||
// Deprecated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
redundant comment
pub: string; | ||
}; | ||
|
||
export class EddsaKeyDeriver { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs JS Docs for methods
@alebusse There are modules that are only test that aren't part of the breaking change for the module itself. This PR needs to be broken up into multiple commits so that the breaking change doesn't wrongfully bump incorrect packages. |
good to know, i didnt manually created the commmit msg, commitizen cli does it for me, i follow the steps. |
Make sense, this is not actually a PR to merge or review, is just a POC for Islam to review and work on the missing part. But i think we wont even be doing this now, im testing something else |
Implemented Eddsa multisig derivation
BREAKING CHANGE:
wallet.getPrv()
is now an async method,coin.generateKeyPair()
,coin.deriveKeyWithSeed()
andkeychains.create()
are deprecated, use their Async version instead.WP-1401
TICKET: WP-1401